Use commas to differentiate between text and filename
authorJordi Mas <jmas@softcatala.org>
Wed, 24 Jul 2019 13:51:22 +0000 (13:51 +0000)
committerMatthias Clasen <mclasen@redhat.com>
Wed, 24 Jul 2019 13:51:22 +0000 (13:51 +0000)
gdk/x11/gdkapplaunchcontext-x11.c

index 58e8f380ef9bbd41fbcdb0921f8c0e8afbfe27d7..adc11bf4ec56094d02e090f1c1e9de7081810450 100644 (file)
@@ -289,7 +289,7 @@ gdk_x11_app_launch_context_get_startup_notify_id (GAppLaunchContext *context,
   files_count = g_list_length (files);
   if (files_count == 0)
     {
-      description = g_strdup_printf (_("Starting %s"), g_app_info_get_name (info));
+      description = g_strdup_printf (_("Starting ā€œ%sā€"), g_app_info_get_name (info));
     }
   else if (files_count == 1)
     {
@@ -302,7 +302,7 @@ gdk_x11_app_launch_context_get_startup_notify_id (GAppLaunchContext *context,
                                       0, NULL, NULL);
 
       display_name = get_display_name (files->data, fileinfo);
-      description = g_strdup_printf (_("Opening %s"), display_name);
+      description = g_strdup_printf (_("Opening ā€œ%sā€"), display_name);
       g_free (display_name);
     }
   else